App Configuration (1 / 13): In Azure App Configuration, when loading configuration and using multiple .Select() calls, how does the order of these calls affect the values that are used if a key with the same name exists in both labels? Consider the following code snippet used to load configuration from Azure App Configuration:
builder.Configuration.AddAzureAppConfiguration(options =>
{
options.Connect(connectionString)
// Select a subset of the configuration keys
.Select("TestApp:*", LabelFilter.Null)
.Select("TestApp:*", "dev");
});